home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2002 March
/
PCWorld_2002-03_cd.bin
/
Software
/
TemaCD
/
xteq
/
setup.exe
/
{app}
/
plugins
/
XQ Ver Disp 3.xpl
< prev
next >
Wrap
Text File
|
2001-01-21
|
2KB
|
60 lines
"FILE"="Xteq Systems X-Setup Plugin 5.0"
"TYPE"="1"
"COUNT"="4"
"UIPATH"="Information\Applications"
"NAME"="Microsoft Plus! Check"
"VERSION"="1.27"
"LANGUAGE"="VBScript"
"TEXT 1"="Plus! 95"
"TEXT 2"="Plus! 98"
"TEXT 3"="Plus! for Kids"
"TEXT 4"="Plus! 2000"
"DESCRIPTION 1"="This plug-in displays if Plus! is installed or not."
"DESCRIPTION 2"="You can't change anything!!!"
"AUTHOR"="Xteq Systems (CptSiskoX)"
"CONTACTURL"="http://www.xteq.com"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"=" "
"COMMENT 2"=" "
sV1="HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\Plus!\DisplayName"
sV1_C="Microsoft« Plus! for Windows« 95"
sV2="HKLM\Software\Microsoft\Plus!98\Setup\Installed"
sV3="HKLM\SOFTWARE\Microsoft\Microsoft Kids\Kids Plus!\Registration\ProductID"
sV4="HKLM\SOFTWARE\Microsoft\DirectPlay\Applications\Plus! Game Pack - Cards and Puzzles\Launcher\"
Sub Plugin_Initialize
sT="Not installed"
s=RegReadValue(sv1)
If s=sV1_C then sT="Detected"
Call SetUIElement(1,sT)
sT="Not installed"
s=RegReadValue(sv2)
If s="1" then sT="Detected"
Call SetUIElement(2,sT)
sT="Not installed"
s=RegReadValue(sV3)
If IsEmpty(s)=false then sT="Detected"
Call SetUIElement(3,sT)
sT="Not installed"
s=RegReadValue(sv4)
If s="BicyCrds.exe" then sT="Detected"
Call SetUIElement(4,sT)
Call Disable 'user can't change anything!
End Sub
Sub Plugin_CheckData(ElementIndex)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
End Sub
Sub Plugin_Terminate
End Sub